PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Devdojo

Devdojo posts, videos, courses, and more

Simplifying Your Video Playback With Laravel

As Laravel developers, we're always on the lookout for ways to enhance the user experience in our applications. Implementing smooth and user-friendly video playback can be a game-changer. In...

Supernova3339 ยท 1 year ago

5

Simplifying Laravel Upgrade Tasks: A Guide to Automating Your Development Workflow

As Laravel developers, we know that upgrading our applications can be a pain. There are always a bunch of tasks like building assets, running database migrations, and clearing your applicati...

Supernova3339 ยท 2 years ago

5

The Importance of a CSS Preloader and How to Implement One

In today's fast-paced world, online users have come to expect quick and seamless interactions with websites and applications. Slow loading times, while common, can leave users feeling frustr...

Supernova3339 ยท 2 years ago

4

How to add two factor authentication to your laravel application

Two factor authentication is a security measure that adds an extra layer of protection to a user's account or system by requiring two forms of identification. Instead of relying solely on a...

Supernova3339 ยท 2 years ago

5

what is webpack | shorts

Webpack is a static module bundler for modern JavaScript applications. It creates a dependency graph to map every module the project needs and generated one or more bundles. The core concept...

Rahul ยท 3 years ago

2

portals in React | shorts

Portals are provided by ReactDOM and it is a way of rendering children into a DM node that exists outside the DOM hierarchy of the parent. To simplify, we can render an element into a div ev...

Rahul ยท 3 years ago

1

some() method explained

The some() method tests whether at least one of the elements in the array passes the test implemented by the provided function. The result of the some() method is a boolean. Let's see the sy...

Rahul ยท 3 years ago

4

useState revised in React

It's time to finally understand how the useState() hook works and when is the perfect time to use it! I tried to explain this as well as I could, and I hope it can be of value to you! What...

Rahul ยท 3 years ago

4

Hoisting in JavaScript | shorts

In JavaScript, hoisting permits you to utilize capacities and factors before they're proclaimed. Here, we'll realize what hoisting is and the way in which it works. What exactly is hoisting...

Rahul ยท 3 years ago

2

Tips and free resources to ace you Tech Interview

The screening can be an overwhelming one (particularly assuming you need to go through it on numerous occasions) however being arranged can make it somewhat less distressing. So I'm sharing...

Rahul ยท 3 years ago

6

VS Code Extensions to increase productivity and time-saver hacks for developers

How can developers be extra productive? Youโ€™re a developer or you manage a team of developers, higher productivity can get you extra things done through constant resources in a very small-ti...

Rahul ยท 3 years ago

8

15 beginner only HTML and CSS mistakes

I have rounded up some of the HTML and CSS Mistakes I've made and you don't have to. These are some beginner mistakes, don't judge me๐Ÿ˜‚. HTML MISTAKES No matter what stack or framework you...

Rahul ยท 3 years ago

4

Unique and cool toolkit for developers + Big Bonus ๐Ÿ˜๐Ÿ˜

Hey, guys, I'm bringing the list of websites/tools you never thought to bookmark as a developer. These website/tools will help you in a very way in your project and all. So let's get started...

Rahul ยท 3 years ago

1

Brief intro to RxJS

RxJS (Reactive Extensions for JavaScript) is a library for receptive programming utilizing observables that makes it simpler to make nonconcurrent or callback-based code. There is a lot to i...

Rahul ยท 3 years ago

4

State and React router - Shorts

React Router is the standard routing library for React. It has a simple API with all the powerful features like lazy code loading, dynamic route matching and location transition handling bui...

Rahul ยท 3 years ago

22+ FREE JavaScript eBooks you should read

JavaScript is a programming language that permits you to carry out complex highlights on website pages โ€” each time a site page accomplishes something beyond stay there and show static data...

Rahul ยท 3 years ago

1

list and keys - react shorts

In JavaScript, if you want to create a new array from an available array by converting each element of the original array to create the corresponding element of the new array, you can use...

Rahul ยท 3 years ago

2

21+ Super DevTools you may have not heard of

In this web period, practically any free tools can be found online to take care of normal issues designers face each day. And so on, somebody has effectively fabricated it. In this article,...

Rahul ยท 3 years ago

5

320+ free resources for learning fullstack, frontend and backend

You only need this post to become a Developer because this post has nearly unlimited amount of every type of resources covering everything you will need. Blog your Journey DevDojo - DevDo...

Rahul ยท 3 years ago

4

13 Ultimate UI/UX website inspiration for Designers and Developers

Regardless of whether you're an accomplished website designer or developer or simply a beginner, a website architecture venture's extension can rapidly limit the quantity of assets accessibl...

Rahul ยท 3 years ago

3

7 Skills developers need on their resume

Your resume describes your qualifications and what makes you unique. To stand out among other applicants, you need a resume that markets your strengths and matches for the job. Here I'm gonn...

Rahul ยท 3 years ago

4

Bigint in JS - shorts

BigInt is a built-in object that provides a way to represent a whole number larger than 253 - 2, which is the largest number JavaScript can represent with Number. BigInt is created by append...

Rahul ยท 3 years ago

4

JSX in React - shorts

In this post we will learn what is JSX and why to use it with react. What is JSX ? JSX stands for JavaScript XML. It allows us to write HTML inside JavaScript. It converts HTML tags into Re...

Rahul ยท 3 years ago

3

tail recursive function - shorts

A recursive function is a function that calls itself until it doesn't stop. This technique is called recursion. Here, function factorial is called in a loop like procedure. Initially, it inv...

Rahul ยท 3 years ago

3

Shallow Copy and Deep Copy in JS

Hey guys in this latest post we will understand about Shallow Copy and Deep Copy in JavaScript in a very easy way. I was writing this post from the last 5 days(on my phone) and I completed i...

Rahul ยท 3 years ago

4

Decorators and Object creation pattern in JS

Object creation mechanisms increase the flexibility and reuse of existing code. Here in this post, we will see the Object Creation Pattern in JavaScript. Some patterns to create an object a...

Rahul ยท 3 years ago

3

Free resources for blogging as a developer

When blogging as a developer it's just hard to explain somethings actually many things. So here in this post, I am getting many resources you can use when writing your blog post. So, let's...

Rahul ยท 3 years ago

4

useMemo in React - Shorts

New post on the React Series "useMemo" hook. Everything about it. Optimizing your applications is one of the major aspects which is often overlooked as a beginner. What is Memoiza...

Rahul ยท 3 years ago

3

useCallback in React - shorts

New post in the React series about the useCallback hook. Everything you need to know. What is useCallback? Do you remember the useMemo hook which we saw in the last post? The useCallback ho...

Rahul ยท 3 years ago

3

map() in JS - shorts

JavaScript methods are actions that can be performed on objects. So here is my new blog post I will cover the two JavaScript methods map() and filter(). Will explain easily and in detail....

Rahul ยท 3 years ago

4

Loading More Content